home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / romdoor.zip / ROMCOPY.DOC < prev    next >
Text File  |  1991-02-11  |  1KB  |  35 lines

  1. *** ROMCOPY ***
  2.  
  3. This is a quick utility to be able to copy ANY file on the CDROM by
  4. just giving the name, not worrying about what directory it is in.
  5. This is done through a simple ASCII database file (FILELIST.DAT)
  6. that tells where the files are.  The format of the file is as follows:
  7.  
  8. First line:
  9.  
  10. XXX   where XXX is the default file extension of the files in that
  11.       database... this saves major space in most cases.
  12.  
  13. Repeated sets of the following:
  14.  
  15. <drive:\dir>    The subdirectory.  Drive is optional.
  16. <filename.ext>  A list of the files in that subdirectory... do not
  17.     .           include the extension if it is the default extension 
  18.     .           -- and don't put the dot in.  The only time you need
  19.     .           a dot is for files with NO extension.
  20. <filename.ext>
  21.  
  22. There is a program called makedir.exe that will generate such a list
  23. for a drive automatically, traversing all the directories of a disk
  24. and producing the database.  The format of the command is:
  25.  
  26.   makedir c: zip OFF
  27.  
  28. where  c: is the drive letter of the cd-rom, zip is the name of the
  29. default file extension and off tells makedir not to include the
  30. drive: in the database, mainly so that CD rom developers can put
  31. the database on the cdrom and have the users run the door from the
  32. cd rom, whatever drive it might be installed on.
  33.  
  34.  
  35.